home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / gdevpfax.c < prev    next >
C/C++ Source or Header  |  1994-07-27  |  7KB  |  214 lines

  1. /* Copyright (C) 1993, 1994 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gdevpfax.c */
  20. /* Generic PostScript system compatible fax support */
  21. #include "gdevprn.h"
  22. #include "gsparam.h"
  23. #include "gxiodev.h"
  24.  
  25. /* This code defines a %Fax% IODevice, and also provides decoding for */
  26. /* the FaxOptions dictionary in a page device. */
  27. /* It is still fragmentary and incomplete. */
  28.  
  29. #define limited_string(len)\
  30.   struct { byte data[len]; uint size; }
  31.  
  32. /* ------ %Fax% implementation ------ */
  33.  
  34. /* Define the structure for the Fax IODevice state. */
  35. typedef struct gx_io_device_fax_s {
  36.     gx_io_device_common;
  37.     bool ActivityReport;
  38.     bool DefaultCaptionOn;
  39.     bool DefaultConfirmOn;
  40.     bool DefaultCoversOn;
  41.     int DefaultResolution;
  42.     int DefaultRetryCount;
  43.     int DefaultRetryInterval;
  44.     int DialToneWaitPeriod;
  45.     limited_string(20) ID;
  46.     long MaxFaxBuffer;
  47.     limited_string(32) PostScriptPassword;
  48.     bool ReceivePostScript;
  49.     int Rings;
  50.     int ServiceEnable;
  51.     int Speaker;
  52.     const char *StorageDevice;
  53.     bool WaitForDialTone;
  54. } gx_io_device_fax;
  55.  
  56. private iodev_proc_get_params(fax_get_params);
  57. private iodev_proc_put_params(fax_put_params);
  58. const gx_io_device_fax gs_iodev_Fax =
  59.   { "%Fax%", "Parameters",
  60.      { iodev_no_init, iodev_no_open_device, iodev_no_open_file,
  61.        iodev_os_fopen, iodev_os_fclose,
  62.        iodev_no_delete_file, iodev_no_rename_file, iodev_no_file_status,
  63.        iodev_no_enumerate_files, NULL, NULL,
  64.        fax_get_params, fax_put_params
  65.      },
  66.     false,                /* A */
  67.     true, true, true, 1, 0, 3, 1,    /* D */
  68.     { { 0 }, 0 },            /* I */
  69.     350000,                /* M */
  70.     { { 0 }, 0 },            /* P */
  71.     true, 4 /* ? */,            /* R */
  72.     3, 1, "%ram%",            /* S */
  73.     true                /* W */
  74.   };
  75.  
  76. /* The following code is shared between get and put parameters. */
  77. typedef struct fax_strings_s {
  78.     gs_param_string id, pwd, sd;
  79. } fax_strings;
  80. private int
  81. fax_xfer_params(register gx_io_device_fax *faxdev, gs_param_list *plist,
  82.   fax_strings *pfs)
  83. {    int code;
  84.     pfs->id.data = faxdev->ID.data, pfs->id.size = faxdev->ID.size,
  85.       pfs->id.persistent = false;
  86.     pfs->pwd.data = faxdev->PostScriptPassword.data,
  87.       pfs->pwd.size = faxdev->PostScriptPassword.size,
  88.       pfs->pwd.persistent = false;
  89.     pfs->sd.data = (const byte *)faxdev->StorageDevice,
  90.       pfs->sd.size = strlen(pfs->sd.data),
  91.       pfs->sd.persistent = true;
  92.     if (    (code = param_bool_param(plist, "ActivityReport", &faxdev->ActivityReport)) < 0 ||
  93.         (code = param_bool_param(plist, "DefaultCaptionOn", &faxdev->DefaultCaptionOn)) < 0 ||
  94.         (code = param_bool_param(plist, "DefaultConfirmOn", &faxdev->DefaultConfirmOn)) < 0 ||
  95.         (code = param_bool_param(plist, "DefaultCoversOn", &faxdev->DefaultCoversOn)) < 0 ||
  96.         (code = param_int_param(plist, "DefaultResolution", &faxdev->DefaultResolution)) < 0 ||
  97.         (code = param_int_param(plist, "DefaultRetryCount", &faxdev->DefaultRetryCount)) < 0 ||
  98.         (code = param_int_param(plist, "DefaultRetryInterval", &faxdev->DefaultRetryInterval)) < 0 ||
  99.         (code = param_int_param(plist, "DialToneWaitPeriod", &faxdev->DialToneWaitPeriod)) < 0 ||
  100.         (code = param_string_param(plist, "ID", &pfs->id)) < 0 ||
  101.         (code = param_long_param(plist, "MaxFaxBuffer", &faxdev->MaxFaxBuffer)) < 0 ||
  102.         (code = param_string_param(plist, "PostScriptPassword", &pfs->pwd)) < 0 ||
  103.         (code = param_bool_param(plist, "ReceivePostScript", &faxdev->ReceivePostScript)) < 0 ||
  104.         (code = param_int_param(plist, "Rings", &faxdev->Rings)) < 0 ||
  105.         (code = param_int_param(plist, "ServiceEnable", &faxdev->ServiceEnable)) < 0 ||
  106.         (code = param_int_param(plist, "Speaker", &faxdev->Speaker)) < 0 ||
  107.         (code = param_string_param(plist, "StorageDevice", &pfs->sd)) < 0 ||
  108.         (code = param_bool_param(plist, "WaitForDialTone", &faxdev->WaitForDialTone))
  109.        )
  110.         return code;
  111.     return 0;
  112. }
  113.  
  114. #define faxdev ((gx_io_device_fax *)iodev)
  115.  
  116. /* Get parameters from device. */
  117. private int
  118. fax_get_params(gx_io_device *iodev, gs_param_list *plist)
  119. {    fax_strings fs;
  120.     return fax_xfer_params(faxdev, plist, &fs);
  121. }
  122.  
  123. /* Put parameters to device. */
  124. private int
  125. fax_put_params(gx_io_device *iodev, gs_param_list *plist)
  126. {    gx_io_device_fax tdev;
  127.     fax_strings fs;
  128.     int code;
  129.     gx_io_device *sdev;
  130.     tdev = *faxdev;
  131.     code = fax_xfer_params(&tdev, plist, &fs);
  132.     if ( code < 0 )
  133.         return code;
  134. #define between(v, lo, hi) (tdev.v >= (lo) && tdev.v <= (hi))
  135.     if ( !(    between(DefaultResolution, 0, 1) &&
  136.         between(DefaultRetryCount, 0, 100) &&
  137.         between(DefaultRetryInterval, 1, 60) &&
  138.         between(DialToneWaitPeriod, 1, 10) &&
  139.         fs.id.size > 20 ||
  140.         tdev.MaxFaxBuffer >= 350000 &&
  141.         fs.pwd.size > 32 ||
  142.         between(Rings, 1, 30) &&
  143.         between(ServiceEnable, 0, 3) &&
  144.         between(Speaker, 0, 2) &&
  145.         (sdev = gs_findiodevice(fs.sd.data, fs.sd.size)) != 0
  146.           )
  147.        )
  148.         return_error(gs_error_rangecheck);
  149. #undef between
  150.     memcpy(tdev.ID.data, fs.id.data, fs.id.size);
  151.       tdev.ID.size = fs.id.size;
  152.     memcpy(tdev.PostScriptPassword.data, fs.pwd.data, fs.pwd.size);
  153.       tdev.PostScriptPassword.size = fs.pwd.size;
  154.     tdev.StorageDevice = sdev->dname;
  155.     *faxdev = tdev;
  156.     return 0;
  157. }
  158.  
  159. /* ------ FaxOptions decoding ------ */
  160.  
  161. typedef struct fax_options_s fax_options;
  162. typedef struct fax_custom_params_s fax_custom_params;
  163. typedef int (*fax_custom_proc)(P2(const fax_options *, const fax_custom_params *));
  164. struct fax_options_s {
  165.     gs_param_string CalleePhone;
  166.     limited_string(20) CallerID;
  167.     gs_param_string CallerPhone;
  168.     fax_custom_proc Confirmation;
  169.     struct { fax_options *options; uint size; } Copies;
  170.     /* CoverNote */
  171.     fax_custom_proc CoverSheet;
  172.     bool CoverSheetOnly;
  173.     limited_string(100) DialCallee;
  174.     bool ErrorCorrect;
  175.     int FaxType;
  176.     int MailingTime[6];
  177.     int MaxRetries;
  178.     int nPages;
  179.     fax_custom_proc PageCaption;
  180.     limited_string(32) PostScriptPassword;
  181.     void *ProcInfo;
  182.     gs_param_string RecipientID;
  183.     gs_param_string RecipientMailStop;
  184.     gs_param_string RecipientName;
  185.     gs_param_string RecipientOrg;
  186.     gs_param_string RecipientPhone;
  187.     gs_param_string Regarding;
  188.     int RetryInterval;
  189.     bool RevertToRaster;
  190.     gs_param_string SenderID;
  191.     gs_param_string SenderMailStop;
  192.     gs_param_string SenderName;
  193.     gs_param_string SenderOrg;
  194.     gs_param_string SenderPhone;
  195.     bool TrimWhite;
  196. };
  197.  
  198. /* ------ Custom fax procedure parameters ------ */
  199.  
  200. struct fax_custom_params_s {
  201.     limited_string(20) CalleeID;
  202.     int CallLength;
  203.     int CoverType;
  204.     int CurrentPageNo;
  205.     /* ErrorArray */
  206.     int ErrorIndex;
  207.     bool IncludesFinalPage;
  208.     int InitialPage, LimitPage;
  209.     int NumberOfCalls;
  210.     int PagesSent;
  211.     bool SendPostScript;
  212.     int TimeSent[6];
  213. };
  214.